*, *::before, *::after {
    box-sizing: border-box;
}
a {
   color: #000000;
   cursor: pointer;
   text-decoration: underline orange;
   text-transform: uppercase;

}
.services__head{
     color: #F7B948;
}


.services{
    display: block;
    margin-top: 2rem;
}
.services__headers{
    text-align: center;
    
}
.services__section {
    display: grid;
    justify-content: center;
}

.services__box{
    text-align: center;
    align-content:center ;
    padding: 1rem;
    margin: 2rem;
    border: 2px solid orange;
    border-radius: 15px;
  

}
.service__icon{
    display: flex;
    align-self: center;
    margin-top: 10px;
    padding: 10px;
}

.box__btn{
    background-color: orange;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #F7B948;
    border-radius: 5px;
    padding: 20px 30px;
    border: none;
   
}
.service__layout{
   display: flex;
}
.service__type {
    margin-left: 1rem;
    font-size: 18px;
    max-width: 50ch;

}
.line{
    border-bottom: 2px solid rgb(224, 224, 224) ;
    margin-bottom: 10px;
}

@media screen and (min-width: 1200px) {
    .services__section 
    {
        display: flex;
        justify-content: center;
        gap: 40px;
    }
}